home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / gfx / fu1_62.lha / fu / Formulas / MandelBurst158.Form < prev    next >
Text File  |  1995-02-05  |  298b  |  35 lines

  1. MandelBurst158
  2. {
  3.     {
  4.         x1=-2.5
  5.         x2= 2.5
  6.         y1=-2.0
  7.         y2= 2.0
  8.         par1.r=1.0
  9.         par1.i=0.0
  10.         bailout=16.0
  11.     }
  12.     {
  13.         orea=real(pixel)
  14.         oima=imag(pixel)
  15.         c=pixel
  16.         z=pixel
  17.     }
  18.     {
  19.         z=z*z
  20.         z=z+c
  21.         zrea=real(z)
  22.         zima=imag(z)
  23.         x=zrea-orea
  24.         x=x*x
  25.         y=zima-oima
  26.         y=y*y
  27.         w=x+y
  28.     }
  29.     {
  30.         w>bailout
  31.     }
  32.     {
  33.     }
  34. }
  35.